home *** CD-ROM | disk | FTP | other *** search
- global gTitle, mycddrive, mysystem, glanguage
-
- on mouseDown
- cursor(4)
- if gTitle = VOID then
- abort()
- cursor(0)
- end if
- if the machineType = 256 then
- if mycddrive = VOID then
- driveList = DrivesToList()
- repeat with X = 1 to count(driveList)
- driveName = getAt(driveList, X)
- Y = DriveIsCDROM(driveName)
- if Y = 0 then
- mycddrive = driveName
- end if
- end repeat
- end if
- if mysystem = VOID then
- dlist = DrivesToList()
- repeat with X = 1 to count(dlist)
- driveName = getAt(dlist, X)
- t = driveName & "\Program Files"
- b = DirectoryExists(t)
- if b = 0 then
- mysystem = driveName
- exit repeat
- end if
- end repeat
- end if
- u = DriveFreeSpace(mysystem)
- if u < 40960 then
- alert("Drive" && mysystem && "has less than 4 MB, you may need to free up disc space")
- cursor(0)
- end if
- mysource = the moviePath & "data\" & gTitle & "\" & glanguage & "\" & gTitle & "pr.rtf"
- mydest = mysystem
- t = gTitle & "pr.rtf"
- retVal = FileSaveAsDialog(mydest, t, EMPTY, EMPTY)
- if retVal <> EMPTY then
- CopyFile(mysource, retVal)
- end if
- cursor(0)
- else
- if mycddrive = VOID then
- driveList = DrivesToList()
- repeat with X = 1 to count(driveList)
- driveName = getAt(driveList, X)
- Y = DriveIsCDROM(driveName)
- if Y = 0 then
- mycddrive = driveName
- end if
- end repeat
- end if
- if mysystem = VOID then
- dlist = DrivesToList()
- repeat with X = 1 to count(dlist)
- driveName = getAt(dlist, X)
- t = driveName & ":system folder"
- b = DirectoryExists(t)
- if b = 0 then
- mysystem = driveName
- exit repeat
- end if
- end repeat
- end if
- u = DriveFreeSpace(mysystem)
- if u < 40960 then
- alert("Drive" && mysystem && "has less than 4 MB, you may need to free up disc space")
- cursor(0)
- end if
- mysource = the moviePath & "data:" & gTitle & ":" & glanguage & ":" & gTitle & "pr.rtf"
- mydest = mysystem
- t = gTitle & "pr.rtf"
- retVal = FileSaveAsDialog(mydest, t, EMPTY)
- if retVal <> EMPTY then
- CopyFile(mysource, retVal)
- end if
- cursor(0)
- end if
- end
-